home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / misc / emu / ATUtilities.lha / ATUtilities / hifi.h < prev    next >
C/C++ Source or Header  |  2000-09-26  |  765b  |  33 lines

  1. struct HiFiPrefs
  2. {
  3.  UBYTE DefaultCatalog[128];   /* Default-Katalog     */
  4.  UBYTE PlayerDir[128];        /* Player-Verzeichnis  */
  5.  UBYTE Volume;                /* Lautstärke          */
  6.  UBYTE Filter;                /* Filter              */
  7.  
  8.  UBYTE AutoPlaying;           /* ATKeyboard-Autoplay */
  9.  UBYTE AutoPlayingWait;       /* ATKeyboard-Wait     */
  10.  
  11.  UBYTE LBal;                  /* Balance links       */
  12.  UBYTE RBal;                  /* Balance rechts      */
  13.  UBYTE Control;               /* Kontrolldisplay     */
  14.  
  15.  UBYTE pad;
  16. };
  17.  
  18. struct HiFiPrefs HiFiPrefs=
  19. {
  20.  "AT:HiFi-System/Catalogs/Default.cat",
  21.  "AT:HiFi-System/Players",
  22.  64,
  23.  0,
  24.  0,
  25.  0,
  26.  64,64,
  27.  0
  28. };
  29.  
  30. UBYTE *HiFiPort="ATUtilities HiFi-Player";
  31. UBYTE *HiFiPrefsName="AT:Prefs/HiFiPlayer.prefs";
  32.  
  33.